home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / lang / lisp / glisp / glisp.000 / GLISP.UNIX.TAR / closunix / closyacc.hux < prev    next >
Encoding:
Text File  |  1995-04-03  |  321 b   |  20 lines

  1.  
  2. typedef union
  3. #ifdef __cplusplus
  4.     YYSTYPE
  5. #endif
  6. {
  7.     char        *ident;
  8.     double        real;
  9.     long int    integer;
  10.     node        s_expr;
  11. } YYSTYPE;
  12. extern YYSTYPE yylval;
  13. # define IDENTIFIER_YY 257
  14. # define STRING_YY 258
  15. # define INTEGER_YY 259
  16. # define REAL_YY 260
  17. # define BAD_CHAR_YY 261
  18. # define BAD_STRING_YY 262
  19. # define BAD_SQB_YY 263
  20.